home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C++
/
Frameworks
/
Sprocket Framework DR2
/
Sprocket Starter
/
SprocketStarter Code
/
PreferencesDialogWindow.h
< prev
next >
Wrap
Text File
|
1996-05-30
|
510b
|
27 lines
// Sprocket Framework header file
// PreferencesDialogWindow.h
#ifndef _PREFERENCESDIALOGWINDOW_
#define _PREFERENCESDIALOGWINDOW_
#ifndef _DIALOGWINDOW_
#include "DialogWindow.h"
#endif
// Information about the dialog ID we are using.
const DialogTemplateID kPreferencesDialogTemplateID = 1024;
class TPreferencesDialogWindow : public TDialogWindow
{
public:
TPreferencesDialogWindow();
virtual void AdjustMenusBeforeMenuSelection(void);
virtual void ItemHit(short theItem);
};
#endif